home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / web / noweb / src / lib / emptydefn < prev    next >
Text File  |  1995-02-24  |  260b  |  10 lines

  1. #!/bin/sh
  2. #
  3. # notangle filter that makes the definition of an empty chunk <<>>= 
  4. # stand for a continuation of the previous chunk definition.
  5.  
  6. nawk 'BEGIN { lastdefn = "@defn " }
  7. /^@defn $/ { print lastdefn; next }
  8. /^@defn /  { lastdefn = $0 }
  9. { print }' "$@"
  10.